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

28 lines
522 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2018-11-04 11:35:06 +01:00
, six
}:
buildPythonPackage rec {
pname = "munch";
2018-11-04 11:35:06 +01:00
version = "2.3.2";
src = fetchPypi {
inherit pname version;
2018-11-04 11:35:06 +01:00
sha256 = "6ae3d26b837feacf732fb8aa5b842130da1daf221f5af9f9d4b2a0a6414b0d51";
};
2018-11-04 11:35:06 +01:00
propagatedBuildInputs = [ six ];
# 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;
};
}