pythonPackages.binaryornot: init at 0.4.0

This commit is contained in:
Louis Taylor 2016-01-17 16:30:42 +00:00
parent 0dc1bc4aee
commit 6f94a131e8

View file

@ -1923,6 +1923,27 @@ in modules // {
};
binaryornot = buildPythonPackage rec {
name = "binaryornot-${version}";
version = "0.4.0";
src = pkgs.fetchurl {
url ="https://pypi.python.org/packages/source/b/binaryornot/${name}.tar.gz";
sha256 = "1j4f51dxic39mdwf6alj7gd769wy6mhk916v031wjali51xkh3xb";
};
buildInputs = with self; [ hypothesis sqlite3 ];
propagatedBuildInputs = with self; [ chardet ];
meta = {
homepage = https://github.com/audreyr/binaryornot;
description = "Ultra-lightweight pure Python package to check if a file is binary or text";
license = licenses.bsd3;
};
};
bitbucket_api = buildPythonPackage rec {
name = "bitbucket-api-0.4.4";