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

28 lines
493 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "pid";
2020-04-10 19:46:49 +00:00
version = "3.0.3";
src = fetchPypi {
inherit pname version;
2020-04-10 19:46:49 +00:00
sha256 = "0z9w99m1vppppj2ypgm0flslgwcjjzlr7x3m62sccavgbg1n2nwj";
};
buildInputs = [ nose ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
description = "Pidfile featuring stale detection and file-locking";
2020-03-23 12:48:17 +00:00
homepage = "https://github.com/trbs/pid/";
license = licenses.asl20;
};
}