nixpkgs/pkgs/development/python-modules/fqdn/default.nix
2024-05-22 17:32:03 +02:00

34 lines
674 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 ];
};
}