Files
nixpkgs/pkgs/development/python-modules/filelock/default.nix
R. RyanTM 590a76a5a9 python36Packages.filelock: 3.0.9 -> 3.0.10 (#49993)
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.6-filelock/versions
2018-11-10 15:44:34 +01:00

19 lines
483 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "filelock";
version = "3.0.10";
src = fetchPypi {
inherit pname version;
sha256 = "1rjv7g85smh6hrq6n9h721kh83qjv8mfp0ksdnbqbbsd82xw246n";
};
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 ];
};
}