1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/jaraco_text/default.nix

15 lines
416 B
Nix
Raw Normal View History

2018-09-03 01:20:00 +01:00
{ buildPythonPackage, fetchPypi, setuptools_scm
, jaraco_functools, jaraco_collections }:
buildPythonPackage rec {
pname = "jaraco.text";
2019-02-14 07:37:18 +00:00
version = "2.0";
2018-09-03 01:20:00 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:18 +00:00
sha256 = "3660678d395073626e72a455b24bacf07c064138a4cc6c1dae63e616f22478aa";
2018-09-03 01:20:00 +01:00
};
doCheck = false;
buildInputs =[ setuptools_scm ];
propagatedBuildInputs = [ jaraco_functools jaraco_collections ];
}