ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / rfc3339-validator / default.nix
blobd821d672a294e0b12001151a87f14febf75acbb9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , hypothesis
6 , six
7 , strict-rfc3339
8 }:
10 buildPythonPackage rec {
11   pname = "rfc3339-validator";
12   version = "0.1.4";
14   src = fetchPypi {
15     pname = "rfc3339_validator";
16     inherit version;
17     sha256 = "0srg0b89aikzinw72s433994k5gv5lfyarq1adhas11kz6yjm2hk";
18   };
20   propagatedBuildInputs = [ six ];
22   checkInputs = [ pytestCheckHook hypothesis strict-rfc3339 ];
23   pythonImportsCheck = [ "rfc3339_validator" ];
25   meta = with lib; {
26     description = "RFC 3339 validator for Python";
27     homepage = "https://github.com/naimetti/rfc3339-validator";
28     license = licenses.mit;
29     maintainers = with maintainers; [ AluisioASG ];
30   };