mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
python3Packages.dpkt: add pythonImportsCheck
This commit is contained in:
parent
c754d40c82
commit
3316342ced
@ -1,4 +1,7 @@
|
||||
{ lib, fetchPypi, buildPythonPackage }:
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dpkt";
|
||||
@ -9,6 +12,11 @@ buildPythonPackage rec {
|
||||
sha256 = "74899d557ec4e337db29cecc80548b23a1205384d30ee407397cfb9ab178e3d4";
|
||||
};
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "dpkt" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols";
|
||||
homepage = "https://github.com/kbandla/dpkt";
|
||||
|
Loading…
Reference in New Issue
Block a user