2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, coverage, nose, six }:
|
2018-03-31 10:35:57 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "attrdict";
|
2019-02-14 07:37:10 +00:00
|
|
|
version = "2.0.1";
|
2018-03-31 10:35:57 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:10 +00:00
|
|
|
sha256 = "35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70";
|
2018-03-31 10:35:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ coverage nose six ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-31 10:35:57 +01:00
|
|
|
description = "A dict with attribute-style access";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/bcj/AttrDict";
|
2018-03-31 10:35:57 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|