nixpkgs/pkgs/development/python-modules/munch/default.nix

29 lines
534 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2018-11-04 10:35:06 +00:00
, six
, pbr
}:
buildPythonPackage rec {
pname = "munch";
2019-12-19 19:31:15 +00:00
version = "2.5.0";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:15 +00:00
sha256 = "2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2";
};
propagatedBuildInputs = [ six pbr ];
2018-11-04 10:35:06 +00:00
# No tests in archive
doCheck = false;
meta = with stdenv.lib; {
description = "A dot-accessible dictionary (a la JavaScript objects)";
license = licenses.mit;
homepage = "https://github.com/Infinidat/munch";
};
}