ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / yamlloader / default.nix
blob97da02102c7fd618bb675b86358196dabab7745b
1 { lib, buildPythonPackage, fetchPypi
2 , pytest, pyyaml, hypothesis
3 }:
5 buildPythonPackage rec {
6   pname = "yamlloader";
7   version = "1.1.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6";
12   };
14   propagatedBuildInputs = [
15     pyyaml
16   ];
18   checkInputs = [
19     hypothesis
20     pytest
21   ];
23   pythonImportsCheck = [
24     "yaml"
25     "yamlloader"
26   ];
28   meta = with lib; {
29     description = "A case-insensitive list for Python";
30     homepage = "https://github.com/Phynix/yamlloader";
31     license = licenses.mit;
32     maintainers = with maintainers; [ freezeboy ];
33   };