mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
549 B
Nix
29 lines
549 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, zlib
|
|
, lzma
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "deeptoolsintervals";
|
|
version = "0.1.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x";
|
|
};
|
|
|
|
buildInputs = [ zlib lzma ];
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://deeptools.readthedocs.io/en/develop";
|
|
description = "Helper library for deeptools";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ scalavision ];
|
|
};
|
|
}
|