1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python3Packages.portalocker: fix build

This commit is contained in:
Jonathan Ringer 2019-10-28 19:27:41 -07:00 committed by Jon
parent 1ec51ce906
commit ca83508626

View file

@ -1,6 +1,7 @@
{ buildPythonPackage
, fetchPypi
, lib
, fetchpatch
, sphinx
, flake8
, pytest
@ -27,6 +28,13 @@ buildPythonPackage rec {
pytestpep8
];
patches = [
(fetchpatch {
url = "https://github.com/WoLpH/portalocker/commit/7741925738c7e66ae9c4a0944a04b6a3088037d5.patch";
sha256 = "1g95rnfbnagkkk9qfzzd5346dl3clbgjnzr2wk09m0wphds7zd8z";
})
];
meta = with lib; {
description = "A library to provide an easy API to file locking";
homepage = https://github.com/WoLpH/portalocker;