pythonPackages.binaryornot: 0.4.0 -> 0.4.4
This commit is contained in:
27
pkgs/development/python-modules/binaryornot/default.nix
Normal file
27
pkgs/development/python-modules/binaryornot/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, chardet, hypothesis }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "binaryornot";
|
||||
version = "0.4.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
# See https://github.com/audreyr/binaryornot/issues/40
|
||||
substituteInPlace tests/test_check.py \
|
||||
--replace "average_size=512" "average_size=128"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ chardet ];
|
||||
|
||||
checkInputs = [ hypothesis ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/audreyr/binaryornot;
|
||||
description = "Ultra-lightweight pure Python package to check if a file is binary or text";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user