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

buildPythonPackage rec {
  pname = "smmap";
  version = "5.0.0";
  format = "setuptools";
  src = fetchPypi {
    inherit pname version;
    sha256 = "c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936";
  };

  nativeCheckInputs = [ 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;
  };
}