nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.qcodes-loop: relax versioningit dependency

+16 -2
+16 -2
pkgs/development/python-modules/qcodes-loop/default.nix
··· 1 1 { lib 2 + , fetchpatch 2 3 , fetchPypi 3 4 , pythonOlder 4 5 , buildPythonPackage ··· 9 8 , matplotlib 10 9 , numpy 11 10 , pandas 11 + , setuptools 12 12 , versioningit 13 + , wheel 13 14 , xarray 14 15 , hickle 15 16 , ipython ··· 27 24 buildPythonPackage rec { 28 25 pname = "qcodes-loop"; 29 26 version = "0.1.1"; 27 + format = "pyproject"; 30 28 31 29 disabled = pythonOlder "3.8"; 32 - format = "pyproject"; 33 30 34 31 src = fetchPypi { 35 32 inherit version; 36 33 pname = "qcodes_loop"; 37 - sha256 = "sha256-pDR0Ws8cYQifftdE9dKcSzMxmouFo4tJmQvNanm6zyM="; 34 + hash = "sha256-pDR0Ws8cYQifftdE9dKcSzMxmouFo4tJmQvNanm6zyM="; 38 35 }; 39 36 37 + patches = [ 38 + # https://github.com/QCoDeS/Qcodes_loop/pull/39 39 + (fetchpatch { 40 + name = "relax-versioningit-dependency.patch"; 41 + url = "https://github.com/QCoDeS/Qcodes_loop/commit/58006d3fb57344ae24dd44bceca98004617b5b57.patch"; 42 + hash = "sha256-mSlm/Ql8e5xPL73ifxSoVc9+U58AAcAmBkdW5P6zEsg="; 43 + }) 44 + ]; 45 + 40 46 nativeBuildInputs = [ 47 + setuptools 41 48 versioningit 49 + wheel 42 50 ]; 43 51 44 52 propagatedBuildInputs = [