mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +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.
31 lines
768 B
Nix
31 lines
768 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "dosage";
|
|
version = "2.17";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0vmxgn9wd3j80hp4gr5iq06jrl4gryz5zgfdd2ah30d12sfcfig0";
|
|
};
|
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
pytestCheckHook pytest-xdist responses
|
|
];
|
|
|
|
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
colorama imagesize lxml requests setuptools six
|
|
];
|
|
|
|
disabled = python3Packages.pythonOlder "3.3";
|
|
|
|
meta = {
|
|
description = "A comic strip downloader and archiver";
|
|
homepage = "https://dosage.rocks/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ toonn ];
|
|
};
|
|
}
|