python3Packages.xxhash: init at 1.3.0
This commit is contained in:
parent
4fec8ff1c4
commit
efc0fc165f
|
@ -0,0 +1,21 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.3.0";
|
||||
pname = "xxhash";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rhrqrlq4n3vgqd1fv1dcc5ga5dzy9qbd40p8rsqqhh5klxg48gy";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/ifduyue/python-xxhash;
|
||||
description = "Python Binding for xxHash https://pypi.org/project/xxhash/";
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.teh ];
|
||||
};
|
||||
}
|
|
@ -4422,6 +4422,8 @@ in {
|
|||
|
||||
xlwt = callPackage ../development/python-modules/xlwt { };
|
||||
|
||||
xxhash = callPackage ../development/python-modules/xxhash { };
|
||||
|
||||
youtube-dl = callPackage ../tools/misc/youtube-dl {};
|
||||
|
||||
youtube-dl-light = callPackage ../tools/misc/youtube-dl {
|
||||
|
|
Loading…
Reference in New Issue