python3Packages.pyquerylist: init at 0-unstable-2025-03-03

This commit is contained in:
Philip Wilk 2025-03-15 17:44:07 +00:00
parent 9b71d9aa36
commit 218abf6972
No known key found for this signature in database
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
tabulate,
coverage,
flake8,
pytest,
pytestCheckHook,
fetchpatch,
}:
buildPythonPackage rec {
pname = "pyquerylist";
version = "0-unstable-2025-03-03";
pyproject = true;
src = fetchFromGitHub {
owner = "markmuetz";
repo = "pyquerylist";
# no recent releases including the pytest rewrite
rev = "1de783a7eddbe0726c6bf49c90153f1130c18ef8";
hash = "sha256-ZhXFnzCKhcFPH8ayxwnDucD6v4E1y0jIk+3SeARAHlw=";
};
build-system = [
setuptools
wheel
];
dependencies = [
tabulate
];
pythonImportsCheck = [ "pyquerylist" ];
nativeCheckInputs = [
coverage
flake8
pytestCheckHook
];
meta = {
description = "Extension of base Python list that you can query";
homepage = "https://github.com/markmuetz/pyquerylist";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ philipwilk ];
};
}

View File

@ -12691,6 +12691,8 @@ self: super: with self; {
pyquery = callPackage ../development/python-modules/pyquery { };
pyquerylist = callPackage ../development/python-modules/pyquerylist { };
pyquaternion = callPackage ../development/python-modules/pyquaternion { };
pyquil = callPackage ../development/python-modules/pyquil { };