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

19 lines
494 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "filelock";
2018-10-06 10:56:17 +00:00
version = "3.0.9";
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:17 +00:00
sha256 = "97694f181bdf58f213cca0a7cb556dc7bf90e2f8eb9aa3151260adac56701afb";
};
meta = with stdenv.lib; {
homepage = https://github.com/benediktschmitt/py-filelock;
description = "A platform independent file lock for Python";
license = licenses.unlicense;
maintainers = with maintainers; [ hyphon81 ];
};
}