nixpkgs/pkgs/development/python-modules/gb-io/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

51 lines
1.0 KiB
Nix

{ stdenv
, lib
, fetchFromGitHub
, buildPythonPackage
, rustPlatform
, cargo
, rustc
, setuptools-rust
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "gb-io";
version = "0.2.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "althonos";
repo = "gb-io.py";
rev = "v${version}";
hash = "sha256-1B7BUJ8H+pTtmDtazfPfYtlXzL/x4rAHtRIFAAsSoWs=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src sourceRoot;
name = "${pname}-${version}";
hash = "sha256-lPnOFbEJgcaPPl9bTngugubhW//AUFp9RAjyiFHxC70=";
};
sourceRoot = src.name;
nativeBuildInputs = [
setuptools-rust
rustPlatform.cargoSetupHook
cargo
rustc
];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "gb_io" ];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://github.com/althonos/gb-io.py";
description = "A Python interface to gb-io, a fast GenBank parser written in Rust";
license = licenses.mit;
maintainers = with lib.maintainers; [ dlesl ];
};
}