python3Packages.tapsaff: init at 0.2.1

This commit is contained in:
Jamie Magee
2025-08-26 21:11:39 -07:00
parent 063545fa7b
commit 4875da785d
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "tapsaff";
version = "0.2.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Q3VLbPsgXAYvZsjcW1m3lus2SFMjNJ8AmkcNK0THB6I=";
};
build-system = [
setuptools
];
dependencies = [
requests
];
# Package does not have tests
doCheck = false;
pythonImportsCheck = [
"tapsaff"
];
meta = {
description = "Provides an API for requesting information from taps-aff.co.uk";
homepage = "https://github.com/bazwilliams/python-taps-aff";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -17801,6 +17801,8 @@ self: super: with self; {
tappy = callPackage ../development/python-modules/tappy { };
tapsaff = callPackage ../development/python-modules/tapsaff { };
tasklib = callPackage ../development/python-modules/tasklib { };
taskw = callPackage ../development/python-modules/taskw { };