nixpkgs/pkgs/development/python-modules/pycsdr/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

27 lines
595 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, csdr }:
buildPythonPackage rec {
pname = "pycsdr";
version = "0.18.0";
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;
};
}