02dab4ab5c
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
27 lines
620 B
Nix
27 lines
620 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, csdr }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycsdr";
|
|
version = "0.18.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jketterl";
|
|
repo = "pycsdr";
|
|
rev = version;
|
|
hash = "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;
|
|
};
|
|
}
|