about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jaraco_text
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-03-10 16:36:49 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2019-03-10 16:36:49 +0100
commit4c57b5e896272e430a8667278102952ec50cac9a (patch)
tree64a134ebec3ee5a962ba87977b2d797be3ac9de2 /pkgs/development/python-modules/jaraco_text
parenteede376d73716798093930369a3c76cde7af6a28 (diff)
downloadnixlib-4c57b5e896272e430a8667278102952ec50cac9a.tar
nixlib-4c57b5e896272e430a8667278102952ec50cac9a.tar.gz
nixlib-4c57b5e896272e430a8667278102952ec50cac9a.tar.bz2
nixlib-4c57b5e896272e430a8667278102952ec50cac9a.tar.lz
nixlib-4c57b5e896272e430a8667278102952ec50cac9a.tar.xz
nixlib-4c57b5e896272e430a8667278102952ec50cac9a.tar.zst
nixlib-4c57b5e896272e430a8667278102952ec50cac9a.zip
pythonPackages.jaraco_text: 2.0 -> 3.0
This fixes the dependency cycle between `jaraco_text` and
`jaraco_collections`. Reported upstream in https://github.com/jaraco/jaraco.text/issues/3

See also https://hydra.nixos.org/build/90307068
See also https://hydra.nixos.org/build/90310398
Addresses #56826
Diffstat (limited to 'pkgs/development/python-modules/jaraco_text')
-rw-r--r--pkgs/development/python-modules/jaraco_text/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/jaraco_text/default.nix b/pkgs/development/python-modules/jaraco_text/default.nix
index 222a92e60fb6..6087258a289b 100644
--- a/pkgs/development/python-modules/jaraco_text/default.nix
+++ b/pkgs/development/python-modules/jaraco_text/default.nix
@@ -1,14 +1,15 @@
 { buildPythonPackage, fetchPypi, setuptools_scm
-, jaraco_functools, jaraco_collections }:
+, jaraco_functools
+}:
 
 buildPythonPackage rec {
   pname = "jaraco.text";
-  version = "2.0";
+  version = "3.0";
   src = fetchPypi {
     inherit pname version;
-    sha256 = "3660678d395073626e72a455b24bacf07c064138a4cc6c1dae63e616f22478aa";
+    sha256 = "1l5hq2jvz9xj05aayc42f85v8wx8rpi16lxph8blw51wgnvymsyx";
   };
   doCheck = false;
   buildInputs =[ setuptools_scm ];
-  propagatedBuildInputs = [ jaraco_functools jaraco_collections ];
+  propagatedBuildInputs = [ jaraco_functools ];
 }