mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.yenc: init at 0.4.0
This commit is contained in:
parent
d9681de618
commit
87e67cb4e5
2 changed files with 35 additions and 0 deletions
32
pkgs/development/python-modules/yenc/default.nix
Normal file
32
pkgs/development/python-modules/yenc/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ fetchurl
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, python
|
||||
, isPyPy
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "yenc";
|
||||
version = "0.4.0";
|
||||
in buildPythonPackage {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://bitbucket.org/dual75/yenc/get/${version}.tar.gz";
|
||||
sha256 = "0zkyzxgq30mbrzpnqam4md0cb09d5falh06m0npc81nnlhcghkp7";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover -s test
|
||||
'';
|
||||
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
meta = {
|
||||
description = "Encoding and decoding yEnc";
|
||||
license = lib.licenses.lgpl21;
|
||||
homepage = https://bitbucket.org/dual75/yenc;
|
||||
maintainers = with lib.maintainers; [ fridh ];
|
||||
};
|
||||
}
|
|
@ -31902,6 +31902,9 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
yenc = callPackage ../development/python-modules/yenc {
|
||||
};
|
||||
|
||||
zeitgeist = if isPy3k then throw "zeitgeist not supported for interpreter ${python.executable}" else
|
||||
(pkgs.zeitgeist.override{python2Packages=self;}).py;
|
||||
|
||||
|
|
Loading…
Reference in a new issue