python311Packages.std-uritemplate: init at 0.0.53

Std-uritemplate implementation for Python

https://github.com/std-uritemplate/std-uritemplate
This commit is contained in:
Fabian Affolter
2024-03-03 23:16:47 +01:00
parent 33a869955a
commit dc84e44ff8
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "std-uritemplate";
version = "0.0.53";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "std_uritemplate";
inherit version;
hash = "sha256-AQjfDMU7XVsu2rInwmDOwy6qeVtbXNIq+wiKff4j4BY=";
};
nativeBuildInputs = [
poetry-core
];
# Module doesn't have unittest, only functional tests
doCheck = false;
pythonImportsCheck = [
"stduritemplate"
];
meta = with lib; {
description = "Std-uritemplate implementation for Python";
homepage = "https://github.com/std-uritemplate/std-uritemplate";
changelog = "https://github.com/std-uritemplate/std-uritemplate/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -14086,6 +14086,8 @@ self: super: with self; {
statsmodels = callPackage ../development/python-modules/statsmodels { };
std-uritemplate = callPackage ../development/python-modules/std-uritemplate { };
std2 = callPackage ../development/python-modules/std2 { };
stdiomask = callPackage ../development/python-modules/stdiomask { };