python-bitstring: new package

bitstring is a python module for binary data manipulation.

Run tested.
This commit is contained in:
Bjørn Forsman 2013-07-07 19:39:36 +02:00
parent 0a0b15321a
commit 5dd026a063

View File

@ -451,6 +451,29 @@ pythonPackages = python.modules // rec {
};
bitstring = buildPythonPackage rec {
name = "bitstring-3.1.2";
src = fetchurl {
url = "https://python-bitstring.googlecode.com/files/${name}.zip";
sha256 = "1i1p3rkj4ad108f23xyib34r4rcy571gy65paml6fk77knh0k66p";
};
buildInputs = [ pkgs.unzip ];
# error: invalid command 'test'
doCheck = false;
meta = with stdenv.lib; {
description = "Module for binary data manipulation";
homepage = https://code.google.com/p/python-bitstring/;
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
};
};
blivet = buildPythonPackage rec {
name = "blivet-${version}";
version = "0.17-1";