pythonPackages.tinydb: init at v3.14.1
This commit is contained in:
parent
f29905dbdf
commit
c027ec5488
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, pytestrunner
|
||||||
|
, pycodestyle
|
||||||
|
, pyyaml
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "tinydb";
|
||||||
|
version = "v3.14.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "msiemens";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "02idbvrm8j4mwsjfkzy11f4png19k307p53s4qa2ifzssysxpb96";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pytestrunner
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
pytestcov
|
||||||
|
pycodestyle
|
||||||
|
pyyaml
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A lightweight document oriented database written in pure Python with no external dependencies";
|
||||||
|
homepage = "https://github.com/msiemens/tinydb";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ marcus7070 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5270,6 +5270,8 @@ in {
|
||||||
|
|
||||||
tiros = callPackage ../development/python-modules/tiros { };
|
tiros = callPackage ../development/python-modules/tiros { };
|
||||||
|
|
||||||
|
tinydb = callPackage ../development/python-modules/tinydb { };
|
||||||
|
|
||||||
tifffile = callPackage ../development/python-modules/tifffile { };
|
tifffile = callPackage ../development/python-modules/tifffile { };
|
||||||
|
|
||||||
tmdb3 = callPackage ../development/python-modules/tmdb3 { };
|
tmdb3 = callPackage ../development/python-modules/tmdb3 { };
|
||||||
|
|
Loading…
Reference in New Issue