python3Packages.portalocker: fix build
This commit is contained in:
parent
1ec51ce906
commit
ca83508626
|
@ -1,6 +1,7 @@
|
||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, lib
|
, lib
|
||||||
|
, fetchpatch
|
||||||
, sphinx
|
, sphinx
|
||||||
, flake8
|
, flake8
|
||||||
, pytest
|
, pytest
|
||||||
|
@ -27,6 +28,13 @@ buildPythonPackage rec {
|
||||||
pytestpep8
|
pytestpep8
|
||||||
];
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/WoLpH/portalocker/commit/7741925738c7e66ae9c4a0944a04b6a3088037d5.patch";
|
||||||
|
sha256 = "1g95rnfbnagkkk9qfzzd5346dl3clbgjnzr2wk09m0wphds7zd8z";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A library to provide an easy API to file locking";
|
description = "A library to provide an easy API to file locking";
|
||||||
homepage = https://github.com/WoLpH/portalocker;
|
homepage = https://github.com/WoLpH/portalocker;
|
||||||
|
|
Loading…
Reference in New Issue