My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pycsdr/default.nix

26 lines
597 B

{ lib, buildPythonPackage, fetchFromGitHub, csdr }:
buildPythonPackage rec {
pname = "pycsdr";
version = "0.18.0";
src = fetchFromGitHub {
owner = "jketterl";
repo = "pycsdr";
rev = version;
sha256 = "sha256-OyfcXCcbvOOhBUkbAba3ayPzpH5z2nJWHbR6GcrCMy8=";
};
propagatedBuildInputs = [ csdr ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "pycsdr" ];
meta = {
homepage = "https://github.com/jketterl/pycsdr";
description = "bindings for the csdr library";
license = lib.licenses.gpl3Only;
maintainers = lib.teams.c3d2.members;
};
}