Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / munch / default.nix
blob368cc0eff5adafd1118fc348688314eb0f15428d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
5 # build-system
6 , pbr
7 , setuptools
9 # tests
10 , pytestCheckHook
11 , pyyaml
14 buildPythonPackage rec {
15   pname = "munch";
16   version = "4.0.0";
17   pyproject = true;
19   src = fetchFromGitHub {
20     owner = "Infinidat";
21     repo = "munch";
22     rev = "refs/tags/${version}";
23     hash = "sha256-p7DvOGRhkCmtJ32EfttyKXGGmO5kfb2bQGqok/RJtU8=";
24   };
26   env.PBR_VERSION = version;
28   nativeBuildInputs = [
29     pbr
30     setuptools
31   ];
33   nativeCheckInputs = [
34     pytestCheckHook
35     pyyaml
36   ];
38   meta = with lib; {
39     description = "A dot-accessible dictionary (a la JavaScript objects)";
40     license = licenses.mit;
41     homepage = "https://github.com/Infinidat/munch";
42   };