mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python3Packages.nunavut: fix build
This commit is contained in:
parent
18e178040a
commit
b4ba29173d
@ -3,12 +3,14 @@
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, pydsdl
|
||||
, pyyaml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nunavut";
|
||||
version = "1.4.2";
|
||||
disabled = pythonOlder "3.5"; # only python>=3.5 is supported
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
@ -17,6 +19,7 @@
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pydsdl
|
||||
pyyaml
|
||||
];
|
||||
|
||||
# allow for writable directory for darwin
|
||||
|
Loading…
Reference in New Issue
Block a user