mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
Merge pull request #293105 from fabaff/std-uritemplate
python311Packages.std-uritemplate: init at 0.0.53
This commit is contained in:
commit
c716e343bc
39
pkgs/development/python-modules/std-uritemplate/default.nix
Normal file
39
pkgs/development/python-modules/std-uritemplate/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user