nixpkgs/pkgs/development/python-modules/zc_lockfile/default.nix
R. RyanTM 24571cded5 python37Packages.zc_lockfile: 1.3.0 -> 1.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-zc.lockfile/versions
2018-12-30 10:25:05 -05:00

27 lines
544 B
Nix

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