ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jaraco_collections / default.nix
blob686095d3b1c0fdb89254b045fe2b423b8e83d62e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools-scm
5 , jaraco_classes
6 , jaraco_text
7 }:
9 buildPythonPackage rec {
10   pname = "jaraco.collections";
11   version = "3.5.2";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-ByuT6zX55IUISFdVU05mo07xzISvKR/Sfzm0TUwN0sM=";
17   };
19   postPatch = ''
20     # break dependency cycle
21     sed -i "/'jaraco.text',/d" setup.cfg
22   '';
24   nativeBuildInputs = [
25     setuptools-scm
26   ];
28   propagatedBuildInputs = [
29     jaraco_classes
30     jaraco_text
31   ];
33   pythonNamespaces = [ "jaraco" ];
35   doCheck = false;
37   pythonImportsCheck = [ "jaraco.collections" ];
39   meta = with lib; {
40     description = "Models and classes to supplement the stdlib 'collections' module";
41     homepage = "https://github.com/jaraco/jaraco.collections";
42     license = licenses.mit;
43     maintainers = with maintainers; [ ];
44   };