ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / frozendict / default.nix
blob6b47dc77c1677be68cc8b95a2cbc587800a25697
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "frozendict";
10   version = "2.3.4";
11   format = "setuptools";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "15b4b18346259392b0d27598f240e9390fafbff882137a9c48a1e0104fb17f78";
18   };
20   pythonImportsCheck = [
21     "frozendict"
22   ];
24   checkInputs = [
25     pytestCheckHook
26   ];
28   preCheck = ''
29     pushd test
30   '';
32   postCheck = ''
33     popd
34   '';
36   meta = with lib; {
37     homepage = "https://github.com/Marco-Sulla/python-frozendict";
38     description = "A simple immutable dictionary";
39     license = licenses.lgpl3Only;
40   };