Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / deeptoolsintervals / default.nix
blob7f78a92877a7d0a1efcf3d4dc9999bb70dfba6d5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 , zlib
6 , xz
7 }:
9 buildPythonPackage rec {
10   pname = "deeptoolsintervals";
11   version = "0.1.9";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x";
17   };
19   buildInputs = [ zlib xz ];
21   nativeCheckInputs = [ pytest ];
23   meta = with lib; {
24     homepage = "https://deeptools.readthedocs.io/en/develop";
25     description = "Helper library for deeptools";
26     license = licenses.mit;
27     maintainers = with maintainers; [ scalavision ];
28   };