Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / py2bit / default.nix
blob7699ccab3a2eeb2f2ae185d1a24a44953d4b6179
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "py2bit";
9   version = "0.3.0";
11   checkInput = [ pytest ];
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1vw2nvw1yrl7ikkqsqs1pg239yr5nspvd969r1x9arms1k25a1a5";
16   };
18   meta = with lib; {
19     homepage = "https://github.com/deeptools/py2bit";
20     description = "File access to 2bit files";
21     longDescription = ''
22         A python extension, written in C, for quick access to 2bit files. The extension uses lib2bit for file access.
23     '';
24     license = licenses.mit;
25     maintainers = with maintainers; [ scalavision ];
26   };