python310Packages.sqltrie: init at 0.0.26

This commit is contained in:
Fabian Affolter 2023-01-22 18:09:42 +01:00
parent b84d40d5e1
commit 6273b43743
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pygtrie
, orjson
, python
, setuptools-scm
}:
buildPythonPackage rec {
pname = "sqltrie";
version = "0.0.26";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "iterative";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-QxQyxGOt6K3Q/ShdTMgI72lJML4J1+zZj1OoKyPAYVs=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
attrs
orjson
pygtrie
];
# nox is not available at the moment
doCheck = false;
pythonImportsCheck = [
"sqltrie"
];
meta = with lib; {
description = "DVC's data management subsystem";
homepage = "https://github.com/iterative/sqltrie";
changelog = "https://github.com/iterative/sqltrie/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -10890,6 +10890,8 @@ self: super: with self; {
sqlsoup = callPackage ../development/python-modules/sqlsoup { };
sqltrie = callPackage ../development/python-modules/sqltrie { };
srp = callPackage ../development/python-modules/srp { };
srpenergy = callPackage ../development/python-modules/srpenergy { };