nixpkgs/pkgs/development/python-modules/jaraco_text/default.nix
Maximilian Bosch 4c57b5e896
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
2019-03-10 16:36:49 +01:00

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