nixpkgs/pkgs/development/python-modules/voluptuous/default.nix
2022-05-04 23:00:35 +02:00

37 lines
657 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "voluptuous";
version = "0.13.1";
src = fetchFromGitHub {
owner = "alecthomas";
repo = pname;
rev = version;
hash = "sha256-cz3Bd+/yPh+VOHxzi/W+gbDh/H5Nl/n4jvxDOirmAVk=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"voluptuous"
];
pytestFlagsArray = [
"voluptuous/tests/"
];
meta = with lib; {
description = "Python data validation library";
homepage = "http://alecthomas.github.io/voluptuous/";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}