nixpkgs/pkgs/development/python-modules/pox/default.nix
Martin Weinelt 2a5d8c467b python3Packages.pox: 0.3.6 -> 0.3.7
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:51 +01:00

29 lines
569 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pox";
version = "0.3.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-BlL28hA/5tS6Y4vrb6jT6KaP1EvLYzFcYUEYUVvMOvs=";
};
# Test sare failing the sandbox
doCheck = false;
pythonImportsCheck = [ "pox" ];
meta = {
description = "Utilities for filesystem exploration and automated builds";
mainProgram = "pox";
homepage = "https://pox.readthedocs.io/";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}