My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/circup/default.nix

52 lines
944 B

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "circup";
version = "1.0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "adafruit";
repo = pname;
rev = version;
hash = "sha256-qX3kSlqA2qP8+XiLYx/hKYfyeB6p3tnXEhESox0c/lY=";
};
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 = [
"circup"
];
meta = with lib; {
description = "CircuitPython library updater";
homepage = "https://github.com/adafruit/circup";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}