Files
nixpkgs/pkgs/development/python-modules/itemdb/default.nix
T
Martin Weinelt 73a019ca03 python3Packages.itemdb: 1.2.0 -> 1.3.0
This commit was automatically generated using update-python-libraries.
2025-08-09 19:00:07 +02:00

27 lines
605 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "itemdb";
version = "1.3.0";
format = "setuptools";
# PyPI tarball doesn't include tests directory
src = fetchFromGitHub {
owner = "almarklein";
repo = "itemdb";
tag = "v${version}";
sha256 = "sha256-HXdOERq2td6CME8zWN0DRVkSlmdqTg2po7aJrOuITHE=";
};
meta = with lib; {
description = "Easy transactional database for Python dicts, backed by SQLite";
license = licenses.bsd2;
homepage = "https://itemdb.readthedocs.io";
maintainers = [ maintainers.matthiasbeyer ];
};
}