mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
0215034f25
when they already rely on SRI hashes.
32 lines
812 B
Nix
32 lines
812 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, python, digiham, csdr, pycsdr, codecserver }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydigiham";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jketterl";
|
|
repo = "pydigiham";
|
|
rev = version;
|
|
hash = "sha256-kiEvQl3SuDnHI4Fh97AarsszHGFt7tbWBvBRW84Qv18=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ digiham ];
|
|
buildInputs = [ codecserver pycsdr ];
|
|
# make pycsdr header files available
|
|
preBuild = ''
|
|
ln -s ${pycsdr}/include/${python.libPrefix}/pycsdr src/pycsdr
|
|
'';
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "digiham" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/jketterl/pydigiham";
|
|
description = "bindings for the csdr library";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = lib.teams.c3d2.members;
|
|
};
|
|
}
|