Merge pull request #128904 from mweinelt/python/whatever

authored by Martin Weinelt and committed by GitHub 06607de5 7ac1a2ec

+16 -16
+2 -2
pkgs/development/python-modules/hijri-converter/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "hijri-converter"; 9 - version = "2.1.2"; 9 + version = "2.1.3"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "43b5ac566e7a7deeab364a2397e94405a65fd24ea786073eb3d4c740ebda7b9b"; 13 + sha256 = "1cq67v0fjk7cd8kbppg2kl31a5i6jm8qrkcdqxx6vxwmx65l68ks"; 14 14 }; 15 15 16 16 checkInputs = [ pytestCheckHook ];
+10 -11
pkgs/development/python-modules/textfsm/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "textfsm"; 12 - version = "1.1.1"; 12 + version = "1.1.2"; 13 + format = "setuptools"; 14 + 13 15 14 16 src = fetchFromGitHub { 15 17 owner = "google"; 16 18 repo = pname; 17 19 rev = "v${version}"; 18 - sha256 = "0fq2hphd89hns11nh0yifcp6brg6yy4n4hbvfk6avbjd7s40789a"; 20 + sha256 = "1cbczg3h2841v1xk2s2xg540c69vsrkwxljm758fyr65kshrzlhm"; 19 21 }; 20 22 21 - patches = [ 22 - (fetchpatch { 23 - # remove pytest-runner dependency 24 - url = "https://github.com/google/textfsm/commit/212db75fea4a79aca0f8f85a78954ffbc5667096.patch"; 25 - sha256 = "0n6qh3sz9wy5gdpq9jjxx8firis48ypr20yacs5bqri59sziwjp0"; 26 - }) 23 + propagatedBuildInputs = [ 24 + six 25 + future 27 26 ]; 28 27 29 - propagatedBuildInputs = [ six future ]; 30 - 31 - checkInputs = [ pytestCheckHook ]; 28 + checkInputs = [ 29 + pytestCheckHook 30 + ]; 32 31 33 32 meta = with lib; { 34 33 description = "Python module for parsing semi-structured text into python tables";
+2 -2
pkgs/development/python-modules/token-bucket/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "token-bucket"; 10 - version = "0.2.0"; 10 + version = "0.3.0"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "falconry"; 15 15 repo = pname; 16 16 rev = version; 17 - sha256 = "0kv8j2ab4knvzik2di66bgjwjxdslm2i0hjy35kn9z0dazni585s"; 17 + sha256 = "0a703y2d09kvv2l9vq7vc97l4pi2wwq1f2hq783mbw2238jymb3m"; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+2 -1
pkgs/servers/pinnwand/default.nix
··· 21 21 substituteInPlace pyproject.toml \ 22 22 --replace 'click = "^7.0"' 'click = "*"' \ 23 23 --replace 'docutils = "^0.16"' 'docutils = "*"' \ 24 - --replace 'sqlalchemy = "^1.3"' 'sqlalchemy = "*"' 24 + --replace 'sqlalchemy = "^1.3"' 'sqlalchemy = "*"' \ 25 + --replace 'token-bucket = "^0.2.0"' 'token-bucket = "*"' 25 26 ''; 26 27 27 28 nativeBuildInputs = [