mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 14:53:52 +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.
24 lines
716 B
Nix
24 lines
716 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytest-cov }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "property-manager";
|
|
version = "3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xolox";
|
|
repo = "python-property-manager";
|
|
rev = version;
|
|
sha256 = "1v7hjm7qxpgk92i477fjhpcnjgp072xgr8jrgmbrxfbsv4cvl486";
|
|
};
|
|
|
|
propagatedBuildInputs = [ coloredlogs humanfriendly verboselogs ];
|
|
nativeCheckInputs = [ pytest pytest-cov ];
|
|
|
|
meta = with lib; {
|
|
description = "Useful property variants for Python programming";
|
|
homepage = "https://github.com/xolox/python-property-manager";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ eyjhb ];
|
|
};
|
|
}
|