python3Packages.afsapi: 0.0.4 -> 0.2.0

main
Fabian Affolter 2 years ago
parent 5f6ea5806d
commit 9944b4a01d
  1. 15
      pkgs/development/python-modules/afsapi/default.nix

@ -6,22 +6,29 @@
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "afsapi";
version = "0.0.4";
version = "0.2.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "zhelev";
owner = "wlcrs";
repo = "python-afsapi";
rev = version;
sha256 = "aevxhHuRedDs0JxeMlYSKHDQwcIs7miRm4FCtssdE0w=";
hash = "sha256-9cExuVFbESOUol10DUj9Bt6evtXi1ctBeAsGitrSDqc=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
aiohttp
lxml
@ -42,7 +49,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python implementation of the Frontier Silicon API";
homepage = "https://github.com/zhelev/python-afsapi";
homepage = "https://github.com/wlcrs/python-afsapi";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};

Loading…
Cancel
Save