mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.pyrisco: 0.7.0 -> 0.8.0
https://github.com/OnFreund/pyrisco/releases/tag/v0.8.0
This commit is contained in:
parent
623a75125d
commit
a572026926
1 changed files with 8 additions and 4 deletions
|
|
@ -4,25 +4,29 @@
|
|||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "pyrisco";
|
||||
version = "0.7.0";
|
||||
version = "0.8.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "OnFreund";
|
||||
repo = "pyrisco";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-moFKikAIBLWfkpADjNKqZd3jAg5LPapubB1pGmx8OPo=";
|
||||
hash = "sha256-tzCwimkSLazD6LtimFUcRjOvnvSlYY1MpJLZ2u4WgUg=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
dependencies = [ aiohttp ];
|
||||
|
||||
# Project has no tests
|
||||
# All tests require cloud access
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyrisco" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue