mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
pythonPackages.resampy: init at 0.1.4
This commit is contained in:
parent
bef30f322f
commit
9de120ff9d
@ -22493,6 +22493,28 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
resampy = buildPythonPackage rec {
|
||||
pname = "resampy";
|
||||
version = "0.1.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||
sha256 = "cf4f149d8699af70a1b4b0769fa16fab21835d936ea7ff25e98446aa49e743d4";
|
||||
};
|
||||
|
||||
checkInputs = with self; [ pytest pytestcov ];
|
||||
# No tests included
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = with self; [ numpy scipy cython six ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/bmcfee/resampy;
|
||||
description = "Efficient signal resampling";
|
||||
license = licenses.isc;
|
||||
};
|
||||
};
|
||||
|
||||
robomachine = buildPythonPackage rec {
|
||||
name = "robomachine-0.6";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user