pythonPackages.dictionaries: init at 0.0.1
This commit is contained in:
parent
5a2ee49f3c
commit
ee903f23cd
19
pkgs/development/python-modules/dictionaries/default.nix
Normal file
19
pkgs/development/python-modules/dictionaries/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ buildPythonPackage, fetchPypi, lib, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dictionaries";
|
||||
version = "0.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1jx2ph509sk4l7spslz16y8l6xn97d13nspn4ds2lxn5ward9ihy";
|
||||
};
|
||||
|
||||
buildInputs = [ six ];
|
||||
|
||||
meta = {
|
||||
description = "Dict implementations with attribute access";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
||||
};
|
||||
}
|
@ -248,6 +248,8 @@ in {
|
||||
|
||||
dkimpy = callPackage ../development/python-modules/dkimpy { };
|
||||
|
||||
dictionaries = callPackage ../development/python-modules/dictionaries { };
|
||||
|
||||
diff_cover = callPackage ../development/python-modules/diff_cover { };
|
||||
|
||||
emcee = callPackage ../development/python-modules/emcee { };
|
||||
|
Loading…
Reference in New Issue
Block a user