evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pox / default.nix
blob43c30cd6d574330ec13d703f5681ccdb6ac7fc84
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "pox";
10   version = "0.3.5";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-gSDuTJTpUObgSD4FCk8OVgduWQugqa3RlSTCVL0jwtE=";
18   };
20   # Test sare failing the sandbox
21   doCheck = false;
23   pythonImportsCheck = [ "pox" ];
25   meta = with lib; {
26     description = "Utilities for filesystem exploration and automated builds";
27     mainProgram = "pox";
28     homepage = "https://pox.readthedocs.io/";
29     license = licenses.bsd3;
30     maintainers = [ ];
31   };