biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pytabix / default.nix
blobb1508c27a08e76a1174ccf17c59010a249d160ad
2   lib,
3   buildPythonPackage,
4   isPy3k,
5   fetchPypi,
6   zlib,
7 }:
9 buildPythonPackage rec {
10   pname = "pytabix";
11   version = "0.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1ldp5r4ggskji6qx4bp2qxy2vrvb3fam03ksn0gq2hdxgrlg2x07";
17   };
19   buildInputs = [ zlib ];
21   doCheck = !isPy3k;
22   preCheck = ''
23     substituteInPlace test/test.py \
24       --replace 'test_remote_file' 'dont_test_remote_file'
25   '';
26   pythonImportsCheck = [ "tabix" ];
28   meta = with lib; {
29     homepage = "https://github.com/slowkow/pytabix";
30     description = "Python interface for tabix";
31     license = licenses.mit;
32     maintainers = with maintainers; [ ris ];
33   };