ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyupdate / default.nix
blobcd0460dc7e1942adb9bda815ce2b7df316cf983d
1 { lib, buildPythonPackage, fetchPypi, isPy3k
2 , requests }:
4 buildPythonPackage rec {
5   pname = "pyupdate";
6   version = "1.4.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "016f50853b4d72e5ddb963b042caa45fb60fa4d3f13aee819d829af21e55ef07";
11   };
13   propagatedBuildInputs = [ requests ];
15   # As of 0.2.16, pyupdate is intimately tied to Home Assistant which is py3 only
16   disabled = !isPy3k;
18   # no tests
19   doCheck = false;
21   meta = with lib; {
22     # This description is terrible, but it's what upstream uses.
23     description = "Package to update stuff";
24     homepage = "https://github.com/ludeeus/pyupdate";
25     license = licenses.mit;
26     maintainers = with maintainers; [ peterhoeg ];
27   };