Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 497 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "filelock"; 5 version = "3.0.12"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59"; 10 }; 11 12 meta = with stdenv.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; [ hyphon81 ]; 17 }; 18}