Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / immutables / default.nix
blob196ea78bba702dd0b98bf52bbd72c3c0ea43e306
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "immutables";
10   version = "0.15";
11   disabled = pythonOlder "3.5";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "3713ab1ebbb6946b7ce1387bb9d1d7f5e09c45add58c2a2ee65f963c171e746b";
16   };
18   checkInputs = [ pytestCheckHook ];
20   pythonImportsCheck = [ "immutables" ];
22   meta = with lib; {
23     description = "An immutable mapping type for Python";
24     homepage = "https://github.com/MagicStack/immutables";
25     license = with licenses; [ asl20 ];
26     maintainers = with maintainers; [ catern ];
27   };