mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
33afbf39f6
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.
20 lines
518 B
Nix
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;
|
|
};
|
|
}
|