evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / rfc3339-validator / default.nix
blobd4f70dac0763ca0a1b5e787f39018ff7852a21ca
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   hypothesis,
7   six,
8   strict-rfc3339,
9 }:
11 buildPythonPackage rec {
12   pname = "rfc3339-validator";
13   version = "0.1.4";
14   format = "setuptools";
16   src = fetchPypi {
17     pname = "rfc3339_validator";
18     inherit version;
19     sha256 = "0srg0b89aikzinw72s433994k5gv5lfyarq1adhas11kz6yjm2hk";
20   };
22   propagatedBuildInputs = [ six ];
24   nativeCheckInputs = [
25     pytestCheckHook
26     hypothesis
27     strict-rfc3339
28   ];
29   pythonImportsCheck = [ "rfc3339_validator" ];
31   meta = with lib; {
32     description = "RFC 3339 validator for Python";
33     homepage = "https://github.com/naimetti/rfc3339-validator";
34     license = licenses.mit;
35     maintainers = [ ];
36   };