summary refs log tree commit diff
path: root/pkgs/development/python-modules/smmap/default.nix
blob: 366897d3e19874675aeae8547b58303f9c5d44a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchPypi, buildPythonPackage, nosexcover }:

buildPythonPackage rec {
  pname = "smmap";
  version = "0.9.0";
  src = fetchPypi {
    inherit pname version;
    sha256 = "0qlx25f6n2n9ff37w9gg62f217fzj16xlbh0pkz0lpxxjys64aqf";
  };

  checkInputs = [ nosexcover ];

  meta = {
    description = "A pure python implementation of a sliding window memory map manager";
    homepage = https://github.com/gitpython-developers/smmap;
    maintainers = [ ];
    license = lib.licenses.bsd3;
  };
}