linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / smmap / default.nix
blob1b0f310f42517b7496df584135752bbcc7c7be6f
1 { lib, fetchPypi, buildPythonPackage, nosexcover }:
3 buildPythonPackage rec {
4   pname = "smmap";
5   version = "3.0.5";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "84c2751ef3072d4f6b2785ec7ee40244c6f45eb934d9e543e2c51f1bd3d54c50";
9   };
11   checkInputs = [ nosexcover ];
13   meta = {
14     description = "A pure python implementation of a sliding window memory map manager";
15     homepage = "https://github.com/gitpython-developers/smmap";
16     maintainers = [ ];
17     license = lib.licenses.bsd3;
18   };