python.pkgs.pyblake2: init at 0.9.3
This commit is contained in:
parent
56d1a14419
commit
ac7673e2fa
24
pkgs/development/python-modules/pyblake2/default.nix
Normal file
24
pkgs/development/python-modules/pyblake2/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyblake2";
|
||||
version = "0.9.3";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "626448e1fe1cc01d2197118954bec9f158378577e12686d5b01979f7f0fa2212";
|
||||
};
|
||||
|
||||
# requires setting up sphinx doctest
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "BLAKE2 hash function extension module";
|
||||
license = lib.licenses.publicDomain;
|
||||
homepage = https://github.com/dchest/pyblake2;
|
||||
};
|
||||
}
|
@ -7156,6 +7156,8 @@ in {
|
||||
|
||||
pycassa = callPackage ../development/python-modules/pycassa { };
|
||||
|
||||
pyblake2 = callPackage ../development/python-modules/pyblake2 { };
|
||||
|
||||
pybluez = buildPythonPackage rec {
|
||||
version = "unstable-20160819";
|
||||
pname = "pybluez";
|
||||
|
Loading…
Reference in New Issue
Block a user