3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #215505 from fabaff/aiowinreg-bump

python310Packages.aiowinreg: 0.0.7 -> 0.0.8
This commit is contained in:
Mario Rodas 2023-02-09 22:08:58 -05:00 committed by GitHub
commit 2e78f9856e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 7 deletions

View file

@ -39,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Parser for JET databases";
homepage = "https://github.com/skelsec/aesedb";
changelog = "https://github.com/skelsec/aesedb/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};

View file

@ -1,20 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, prompt-toolkit
, pythonOlder
, winacl
, prompt-toolkit
}:
buildPythonPackage rec {
pname = "aiowinreg";
version = "0.0.7";
version = "0.0.8";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1p88q2b6slm1sw3234r40s9jd03fqlkcx8y3iwg6ihf0z4ww14d1";
src = fetchFromGitHub {
owner = "skelsec";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-4/xElE70rJKBMS1HdHb6BlcKs4gzNfuEo/6ahN6ixSM=";
};
propagatedBuildInputs = [
@ -25,11 +28,14 @@ buildPythonPackage rec {
# Project doesn't have tests
doCheck = false;
pythonImportsCheck = [ "aiowinreg" ];
pythonImportsCheck = [
"aiowinreg"
];
meta = with lib; {
description = "Python module to parse the registry hive";
homepage = "https://github.com/skelsec/aiowinreg";
changelog = "https://github.com/skelsec/aiowinreg/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};