about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/yamlloader/default.nix
blob: 97da02102c7fd618bb675b86358196dabab7745b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, buildPythonPackage, fetchPypi
, pytest, pyyaml, hypothesis
}:

buildPythonPackage rec {
  pname = "yamlloader";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6";
  };

  propagatedBuildInputs = [
    pyyaml
  ];

  checkInputs = [
    hypothesis
    pytest
  ];

  pythonImportsCheck = [
    "yaml"
    "yamlloader"
  ];

  meta = with lib; {
    description = "A case-insensitive list for Python";
    homepage = "https://github.com/Phynix/yamlloader";
    license = licenses.mit;
    maintainers = with maintainers; [ freezeboy ];
  };
}