nixpkgs/pkgs/development/tools/circup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.0 KiB
Nix
Raw Normal View History

2022-02-14 22:27:10 +00:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "circup";
2022-12-12 12:44:38 +00:00
version = "1.1.4";
2022-02-14 22:27:10 +00:00
format = "setuptools";
src = fetchFromGitHub {
owner = "adafruit";
repo = pname;
2022-06-09 00:18:22 +00:00
rev = "refs/tags/${version}";
2022-12-12 12:44:38 +00:00
hash = "sha256-nXDje+MJR6olG3G7RO3esf6UAKynMvCP8YetIhnqoeE=";
2022-02-14 22:27:10 +00:00
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = with python3.pkgs; [
setuptools-scm
];
propagatedBuildInputs = with python3.pkgs; [
appdirs
click
findimports
requests
semver
setuptools
update_checker
];
checkInputs = with python3.pkgs; [
pytestCheckHook
];
postBuild = ''
export HOME=$(mktemp -d);
'';
pythonImportsCheck = [
2022-03-19 20:02:04 +00:00
"circup"
2022-02-14 22:27:10 +00:00
];
meta = with lib; {
description = "CircuitPython library updater";
homepage = "https://github.com/adafruit/circup";
2022-12-17 09:22:47 +00:00
changelog = "https://github.com/adafruit/circup/releases/tag/${version}";
2022-02-14 22:27:10 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}