My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zc_lockfile/default.nix

26 lines
548 B

{ buildPythonPackage
, fetchPypi
, mock
, zope_testing
, lib
}:
buildPythonPackage rec {
pname = "zc.lockfile";
version = "2.0";
src = fetchPypi {
inherit pname version;
sha256 = "307ad78227e48be260e64896ec8886edc7eae22d8ec53e4d528ab5537a83203b";
};
buildInputs = [ mock ];
propagatedBuildInputs = [ zope_testing ];
meta = with lib; {
description = "Inter-process locks";
homepage = "https://www.python.org/pypi/zc.lockfile";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}