mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
487 B
Nix
20 lines
487 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, coverage, nose, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "attrdict";
|
|
version = "2.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "35c90698b55c683946091177177a9e9c0713a0860f0e049febd72649ccd77b70";
|
|
};
|
|
|
|
propagatedBuildInputs = [ coverage nose six ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A dict with attribute-style access";
|
|
homepage = "https://github.com/bcj/AttrDict";
|
|
license = licenses.mit;
|
|
};
|
|
}
|