Skip to content

Commit

Permalink
python312Packages.rzpipe: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Oct 24, 2024
1 parent 1e687cd commit 2230ebe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/development/python-modules/rzpipe/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:

buildPythonPackage rec {
pname = "rzpipe";
version = "0.6.0";
format = "setuptools";
pyproject = true;

disabled = pythonOlder "3.5";
disabled = pythonOlder "3.10";

src = fetchPypi {
inherit pname version;
hash = "sha256-py4oiNp+WUcOGHn2AdHyIpgV8BsI8A1gtJi2joi1Wxc=";
};

build-system = [ setuptools ];

# No native rz_core library
doCheck = false;

Expand Down

0 comments on commit 2230ebe

Please sign in to comment.