lol

Merge pull request #145121 from HenkKalkwater/145109-filelock-python2

python2.7-filelock: Init version 3.2.1 for Python 2

authored by

Thiago Kenji Okada and committed by
GitHub
e5b9df9a bb68e1a7

+27
+7
maintainers/maintainer-list.nix
··· 4550 4550 githubId = 2405974; 4551 4551 name = "Sébastian Méric de Bellefon"; 4552 4552 }; 4553 + henkkalkwater = { 4554 + email = "chris+nixpkgs@netsoj.nl"; 4555 + github = "HenkKalkwater"; 4556 + githubId = 4262067; 4557 + matrix = "@chris:netsoj.nl"; 4558 + name = "Chris Josten"; 4559 + }; 4553 4560 henrikolsson = { 4554 4561 email = "henrik@fixme.se"; 4555 4562 github = "henrikolsson";
+18
pkgs/development/python-modules/filelock/3.2.nix
··· 1 + { lib, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "filelock"; 5 + version = "3.2.1"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw"; 10 + }; 11 + 12 + meta = with lib; { 13 + homepage = "https://github.com/benediktschmitt/py-filelock"; 14 + description = "A platform independent file lock for Python"; 15 + license = licenses.unlicense; 16 + maintainers = with maintainers; [ henkkalkwater ]; 17 + }; 18 + }
+2
pkgs/top-level/python2-packages.nix
··· 110 110 111 111 feedparser = callPackage ../development/python-modules/feedparser/5.nix { }; 112 112 113 + filelock = callPackage ../development/python-modules/filelock/3.2.nix { }; 114 + 113 115 flask = callPackage ../development/python-modules/flask/1.nix { }; 114 116 115 117 flask_ldap_login = callPackage ../development/python-modules/flask-ldap-login { };