python310Packages.archspec: 0.1.4 -> 0.2.0
Diff: https://github.com/archspec/archspec.git/compare/refs/tags/v0.1.4...v0.2.0 Changelog: https://github.com/archspec/archspec/releases/tag/v0.2.0
This commit is contained in:
parent
caf7476762
commit
ebd1b2eb18
1 changed files with 10 additions and 9 deletions
|
@ -1,24 +1,26 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
|
||||||
, poetry-core
|
|
||||||
, click
|
, click
|
||||||
, six
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
|
||||||
, jsonschema
|
, jsonschema
|
||||||
|
, poetry-core
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "archspec";
|
pname = "archspec";
|
||||||
version = "0.1.4";
|
version = "0.2.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
hash = "sha256-ScigEpYNArveqi5tlqiA7LwsVs2RkjT+GChxhSy/ndw=";
|
hash = "sha256-Zu7/zx3FTVJVGpAdRDdnLBokeodspZg6ou/GBaqz4XY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -27,7 +29,6 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
click
|
click
|
||||||
six
|
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -42,7 +43,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for detecting, labeling, and reasoning about microarchitectures";
|
description = "Library for detecting, labeling, and reasoning about microarchitectures";
|
||||||
homepage = "https://archspec.readthedocs.io/";
|
homepage = "https://archspec.readthedocs.io/";
|
||||||
changelog = "";
|
changelog = "https://github.com/archspec/archspec/releases/tag/v0.2.0";
|
||||||
license = with licenses; [ mit asl20 ];
|
license = with licenses; [ mit asl20 ];
|
||||||
maintainers = with maintainers; [ atila ];
|
maintainers = with maintainers; [ atila ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue