mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
30 lines
612 B
Nix
30 lines
612 B
Nix
{ fetchurl
|
|
, lib
|
|
, buildPythonPackage
|
|
, python
|
|
, isPyPy
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yenc";
|
|
version = "0.4.0";
|
|
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 ];
|
|
};
|
|
}
|