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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
616 B
Nix
Raw Normal View History

{ lib
2020-04-11 06:31:25 +02:00
, buildPythonPackage
, fetchPypi
, six
, nose
, coverage
}:
buildPythonPackage rec {
pname = "aadict";
version = "0.2.3";
format = "setuptools";
2020-04-11 06:31:25 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "013pn9ii6mkql6khgdvsd1gi7zmya418fhclm5fp7dfvann2hwx7";
};
propagatedBuildInputs = [ six ];
nativeCheckInputs = [ nose coverage ];
2020-04-11 06:31:25 +02:00
meta = with lib; {
2020-04-11 06:31:25 +02:00
homepage = "https://github.com/metagriffin/aadict";
description = "An auto-attribute dict (and a couple of other useful dict functions).";
maintainers = with maintainers; [ glittershark ];
license = licenses.gpl3;
};
}