We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d92dcc + e6699a5 commit a49d594Copy full SHA for a49d594
pkgs/development/python-modules/universal-pathlib/default.nix
@@ -4,17 +4,20 @@
4
, setuptools
5
, setuptools-scm
6
, fsspec
7
+, pythonOlder
8
}:
9
10
buildPythonPackage rec {
11
pname = "universal-pathlib";
- version = "0.1.1";
12
+ version = "0.1.2";
13
format = "pyproject";
14
15
+ disabled = pythonOlder "3.8";
16
+
17
src = fetchPypi {
18
pname = "universal_pathlib";
19
inherit version;
- hash = "sha256-UhTIbyEP6rm+W8wALwQtZeruw8CTP9ZlpDNstw6GxZ0=";
20
+ hash = "sha256-aJ4nAf717U7RmIjQrKCzVC/iSOCbEK3EMfX3R/hoBSo=";
21
};
22
23
nativeBuildInputs = [
0 commit comments