depot/third_party/nixpkgs/pkgs/development/python-modules/pox/default.nix
Default email 92b3d6365d Project import generated by Copybara.
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
2022-10-30 16:09:59 +01:00

32 lines
618 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "pox";
version = "0.3.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-6CUiUpdjjW49SUFfjPtlQHpdFeVvL7f+nZueMFDGXuE=";
};
# Test sare failing the sandbox
doCheck = false;
pythonImportsCheck = [
"pox"
];
meta = with lib; {
description = "Utilities for filesystem exploration and automated builds";
homepage = "https://pox.readthedocs.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}