summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/smmap/default.nix
blob: 27ae1788145fda8853932ca97e3d7d5efd502ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  lib,
  fetchPypi,
  buildPythonPackage,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "smmap";
  version = "6.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-jXkCjqbMEx2l6rCZpdlamY1DxneZVv/+O0VQQJEQdto=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "smmap" ];

  nativeCheckInputs = [ pytestCheckHook ];

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