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/woodblock/default.nix

36 lines
658 B

{ lib
, buildPythonPackage
, fetchPypi
, click
, multimethod
, numpy
}:
buildPythonPackage rec {
pname = "woodblock";
version = "0.1.7";
src = fetchPypi {
inherit pname version;
sha256 = "c0347ece920b7009d94551983a01f42db02920ca8d7b0ff36d24a337e2c937f7";
};
propagatedBuildInputs = [
click
multimethod
numpy
];
# no tests
doCheck = false;
pythonImportsCheck = [
"woodblock"
];
meta = with lib; {
description = "A framework to generate file carving test data";
homepage = "https://github.com/fkie-cad/woodblock";
license = licenses.mit;
maintainers = teams.determinatesystems.members;
};
}