python3Packages.dotmap: init at 1.3.23
This commit is contained in:
parent
99de33bb1d
commit
ed8f7c60cd
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "dotmap";
|
||||||
|
version = "1.3.23";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0hy88kzzb7zhxfr7iyvl6rhmvz02538pbna7zypaard4a88bbbka";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pytestFlagsArray = [ "dotmap/test.py" ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "dotmap" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python for dot-access dictionaries";
|
||||||
|
homepage = "https://github.com/drgrib/dotmap";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2030,6 +2030,8 @@ in {
|
||||||
inherit (pkgs) graphviz;
|
inherit (pkgs) graphviz;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dotmap = callPackage ../development/python-modules/dotmap { };
|
||||||
|
|
||||||
dparse = callPackage ../development/python-modules/dparse { };
|
dparse = callPackage ../development/python-modules/dparse { };
|
||||||
|
|
||||||
dpath = callPackage ../development/python-modules/dpath { };
|
dpath = callPackage ../development/python-modules/dpath { };
|
||||||
|
|
Loading…
Reference in New Issue