My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/karton-config-extractor/default.nix

46 lines
937 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, karton-core
, malduck
, pythonOlder
}:
buildPythonPackage rec {
pname = "karton-config-extractor";
version = "2.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
rev = "v${version}";
sha256 = "sha256-r0WMtfau5zeVDSjxy2h96INQl8bm4EP0IAcgnGPhTtk=";
};
propagatedBuildInputs = [
karton-core
malduck
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "malduck==4.1.0" "malduck"
'';
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"karton.config_extractor"
];
meta = with lib; {
description = "Static configuration extractor for the Karton framework";
homepage = "https://github.com/CERT-Polska/karton-config-extractor";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
}