nixpkgs/pkgs/development/python-modules/smmap/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

20 lines
518 B
Nix

{ lib, fetchPypi, buildPythonPackage, nosexcover }:
buildPythonPackage rec {
pname = "smmap";
version = "5.0.0";
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;
};
}