4c57b5e896
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
16 lines
365 B
Nix
16 lines
365 B
Nix
{ buildPythonPackage, fetchPypi, setuptools_scm
|
|
, jaraco_functools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jaraco.text";
|
|
version = "3.0";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1l5hq2jvz9xj05aayc42f85v8wx8rpi16lxph8blw51wgnvymsyx";
|
|
};
|
|
doCheck = false;
|
|
buildInputs =[ setuptools_scm ];
|
|
propagatedBuildInputs = [ jaraco_functools ];
|
|
}
|