linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / attrdict / default.nix
blobcb87b9027f04bc5efa79d3b881361390242b63d7
1 { lib, buildPythonPackage, fetchPypi, coverage, nose, six }:
3 buildPythonPackage rec {
4   pname = "attrdict";
5   version = "2.0.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70";
10   };
12   propagatedBuildInputs = [ coverage nose six ];
14   meta = with lib; {
15     description = "A dict with attribute-style access";
16     homepage = "https://github.com/bcj/AttrDict";
17     license = licenses.mit;
18   };