nixpkgs/pkgs/development/python-modules/afsapi/default.nix

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

57 lines
960 B
Nix
Raw Normal View History

2021-11-21 17:43:11 +01:00
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, lxml
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
2022-01-18 23:30:57 +01:00
, setuptools-scm
2021-11-21 17:43:11 +01:00
}:
buildPythonPackage rec {
pname = "afsapi";
version = "0.2.2";
2021-11-21 17:43:11 +01:00
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
2022-01-18 23:30:57 +01:00
owner = "wlcrs";
2021-11-21 17:43:11 +01:00
repo = "python-afsapi";
rev = version;
hash = "sha256-C4rxlkylWGsDsnMPuecrC2ELj1PvP6EelZ/kzTn4Brk=";
2021-11-21 17:43:11 +01:00
};
2022-01-18 23:30:57 +01:00
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
2021-11-21 17:43:11 +01:00
propagatedBuildInputs = [
aiohttp
lxml
];
checkInputs = [
pytest-aiohttp
pytestCheckHook
];
pytestFlagsArray = [
"async_tests.py"
];
pythonImportsCheck = [
"afsapi"
];
meta = with lib; {
description = "Python implementation of the Frontier Silicon API";
2022-01-18 23:30:57 +01:00
homepage = "https://github.com/wlcrs/python-afsapi";
2021-11-21 17:43:11 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}