1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 23:50:07 +03:00
nixpkgs/pkgs/development/python-modules/deeptoolsintervals/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
545 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, zlib
2021-03-14 19:12:53 +01:00
, xz
}:
buildPythonPackage rec {
pname = "deeptoolsintervals";
version = "0.1.9";
src = fetchPypi {
inherit pname version;
sha256 = "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x";
};
2021-03-14 19:12:53 +01:00
buildInputs = [ zlib xz ];
checkInputs = [ pytest ];
meta = with lib; {
homepage = "https://deeptools.readthedocs.io/en/develop";
description = "Helper library for deeptools";
license = licenses.mit;
maintainers = with maintainers; [ scalavision ];
};
}