20 lines
512 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, nosexcover }:
buildPythonPackage rec {
pname = "smmap";
2021-02-20 10:09:17 +01:00
version = "3.0.5";
src = fetchPypi {
inherit pname version;
2021-02-20 10:09:17 +01:00
sha256 = "84c2751ef3072d4f6b2785ec7ee40244c6f45eb934d9e543e2c51f1bd3d54c50";
};
checkInputs = [ nosexcover ];
meta = {
description = "A pure python implementation of a sliding window memory map manager";
2020-02-29 22:13:16 +00:00
homepage = "https://github.com/gitpython-developers/smmap";
maintainers = [ ];
license = lib.licenses.bsd3;
};
}