depot/third_party/nixpkgs/pkgs/development/python-modules/validators/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

35 lines
601 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, decorator
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "validators";
version = "0.20.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-JBSM5OZBAKLV4mcjPiPnr+tVMWtH0w+q5+tucpK8Imo=";
};
propagatedBuildInputs = [
decorator
six
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Python Data Validation for Humans";
homepage = "https://github.com/kvesteri/validators";
license = licenses.bsd3;
maintainers = [ ];
};
}