nixpkgs/pkgs/development/python-modules/fqdn/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

37 lines
679 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "fqdn";
version = "1.5.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ypcrts";
repo = pname;
rev = "v${version}";
hash = "sha256-T0CdWWr8p3JVhp3nol5hyxsrD3951JE2EDpFt+m+3bE=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"fqdn"
];
meta = with lib; {
description = "RFC-compliant FQDN validation and manipulation";
homepage = "https://github.com/ypcrts/fqdn";
license = licenses.mpl20;
maintainers = with maintainers; [ fab ];
};
}