python3Packages.pyquerylist: init at 0-unstable-2025-03-03
This commit is contained in:
parent
9b71d9aa36
commit
218abf6972
50
pkgs/development/python-modules/pyquerylist/default.nix
Normal file
50
pkgs/development/python-modules/pyquerylist/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user