2018-05-12 15:38:11 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, nosexcover }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "smmap";
|
2020-05-09 11:02:00 +01:00
|
|
|
version = "3.0.4";
|
2018-05-12 15:38:11 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:02:00 +01:00
|
|
|
sha256 = "9c98bbd1f9786d22f14b3d4126894d56befb835ec90cef151af566c7e19b5d24";
|
2018-05-12 15:38:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2018-05-12 15:38:11 +01:00
|
|
|
maintainers = [ ];
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|