forked from mirrors/nixpkgs
Merge pull request #163919 from dlesl/gb-io
python310Packages.gb-io: init at 0.1.0
This commit is contained in:
commit
7d6b74e1d2
45
pkgs/development/python-modules/gb-io/default.nix
Normal file
45
pkgs/development/python-modules/gb-io/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, rustPlatform
|
||||
, setuptools-rust
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gb-io";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "althonos";
|
||||
repo = "gb-io.py";
|
||||
rev = "v${version}";
|
||||
sha256 = "05fpz11rqqjrb8lc8id6ssv7sni9i1h7x1ra5v5flw9ghpf29ncm";
|
||||
};
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit src sourceRoot;
|
||||
name = "${pname}-${version}";
|
||||
sha256 = "1qh31jysg475f2qc70b3bczmzywmg9987kn2vsmk88h8sx4nnwc5";
|
||||
};
|
||||
|
||||
sourceRoot = "source";
|
||||
|
||||
nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [
|
||||
cargoSetupHook
|
||||
rust.cargo
|
||||
rust.rustc
|
||||
]);
|
||||
|
||||
checkPhase = ''
|
||||
python -m unittest discover
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "gb_io" ];
|
||||
|
||||
meta = with lib; {
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -3205,6 +3205,8 @@ in {
|
|||
inherit (pkgs) bluez glib pkg-config;
|
||||
};
|
||||
|
||||
gb-io = callPackage ../development/python-modules/gb-io { };
|
||||
|
||||
gbinder-python = callPackage ../development/python-modules/gbinder-python { };
|
||||
|
||||
gcovr = callPackage ../development/python-modules/gcovr { };
|
||||
|
|
Loading…
Reference in a new issue