mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
pythonPackages.itemdb: init at 1.1.1
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
84ca20017b
commit
4f44ede48e
26
pkgs/development/python-modules/itemdb/default.nix
Normal file
26
pkgs/development/python-modules/itemdb/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "itemdb";
|
||||
version = "1.1.1";
|
||||
|
||||
# PyPI tarball doesn't include tests directory
|
||||
src = fetchFromGitHub {
|
||||
owner = "almarklein";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0ksad5j91nlbsn0a11clf994qz7r9ijand5hxnjhgd66i9hl3y78";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Easy transactional database for Python dicts, backed by SQLite";
|
||||
license = licenses.bsd2;
|
||||
homepage = "https://itemdb.readthedocs.io";
|
||||
maintainers = [ maintainers.matthiasbeyer ];
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -4055,6 +4055,8 @@ in {
|
||||
|
||||
itemadapter = callPackage ../development/python-modules/itemadapter { };
|
||||
|
||||
itemdb = callPackage ../development/python-modules/itemdb { };
|
||||
|
||||
itemloaders = callPackage ../development/python-modules/itemloaders { };
|
||||
|
||||
iterm2 = callPackage ../development/python-modules/iterm2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user