ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pox / default.nix
blobf0a825068bbd753bdb6c4896dd1add726e4e5511
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "pox";
9   version = "0.3.2";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-6CUiUpdjjW49SUFfjPtlQHpdFeVvL7f+nZueMFDGXuE=";
17   };
19   # Test sare failing the sandbox
20   doCheck = false;
22   pythonImportsCheck = [
23     "pox"
24   ];
26   meta = with lib; {
27     description = "Utilities for filesystem exploration and automated builds";
28     homepage = "https://pox.readthedocs.io/";
29     license = licenses.bsd3;
30     maintainers = with maintainers; [ ];
31   };