Merge pull request #293105 from fabaff/std-uritemplate

python311Packages.std-uritemplate: init at 0.0.53
This commit is contained in:
Fabian Affolter 2024-03-04 08:21:56 +01:00 committed by GitHub
commit c716e343bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 41 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -14096,6 +14096,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 { };