nixpkgs/pkgs/development/python-modules/pox/default.nix

22 lines
450 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pox";
2019-02-14 07:37:24 +00:00
version = "0.2.5";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:24 +00:00
sha256 = "2b53fbdf02596240483dc2cb94f94cc21252ad1b1858c7b1c151afeec9022cc8";
};
meta = with stdenv.lib; {
description = "Utilities for filesystem exploration and automated builds";
license = licenses.bsd3;
homepage = http://www.cacr.caltech.edu/~mmckerns/pox.htm;
};
}