python2Packages.filelock: use correct version
instead of 0.0.0 when setuptools-scm is not used. This broke virtualenv.
This commit is contained in:
parent
b6be35040f
commit
b9d1f44354
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi }:
|
{ lib, buildPythonPackage, fetchPypi, setuptools-scm }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "filelock";
|
pname = "filelock";
|
||||||
|
@ -9,6 +9,10 @@ buildPythonPackage rec {
|
||||||
sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw";
|
sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools-scm
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/benediktschmitt/py-filelock";
|
homepage = "https://github.com/benediktschmitt/py-filelock";
|
||||||
description = "A platform independent file lock for Python";
|
description = "A platform independent file lock for Python";
|
||||||
|
|
Loading…
Reference in a new issue