python310Packages.sqltrie: init at 0.0.26
This commit is contained in:
parent
b84d40d5e1
commit
6273b43743
52
pkgs/development/python-modules/sqltrie/default.nix
Normal file
52
pkgs/development/python-modules/sqltrie/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user