mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
590a76a5a9
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
19 lines
483 B
Nix
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 ];
|
|
};
|
|
}
|