pythonPackages.aadict: init at 0.2.3
This commit is contained in:
parent
0dccca9517
commit
a48804d24b
2 changed files with 29 additions and 0 deletions
27
pkgs/development/python-modules/aadict/default.nix
Normal file
27
pkgs/development/python-modules/aadict/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, nose
|
||||
, coverage
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aadict";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "013pn9ii6mkql6khgdvsd1gi7zmya418fhclm5fp7dfvann2hwx7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
checkInputs = [ nose coverage ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -134,6 +134,8 @@ in {
|
|||
|
||||
pynamodb = callPackage ../development/python-modules/pynamodb { };
|
||||
|
||||
aadict = callPackage ../development/python-modules/aadict { };
|
||||
|
||||
absl-py = callPackage ../development/python-modules/absl-py { };
|
||||
|
||||
adb-homeassistant = callPackage ../development/python-modules/adb-homeassistant { };
|
||||
|
|
Loading…
Reference in a new issue