mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-05 06:44:40 +00:00
pyOpenSSL: updated to version 0.10
svn path=/nixpkgs/trunk/; revision=22773
This commit is contained in:
parent
3819998730
commit
4e872b84ee
|
@ -1,16 +1,16 @@
|
||||||
a :
|
a :
|
||||||
let
|
let
|
||||||
fetchurl = a.fetchurl;
|
fetchurl = a.fetchurl;
|
||||||
|
|
||||||
version = a.lib.attrByPath ["version"] "0.8" a;
|
version = a.lib.attrByPath ["version"] "0.10" a;
|
||||||
propagatedBuildInputs = with a; [
|
propagatedBuildInputs = with a; [
|
||||||
openssl python
|
openssl python
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
rec {
|
rec {
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://prdownloads.sourceforge.net/sourceforge/pyopenssl/pyOpenSSL-${version}.tar.gz";
|
url = "http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-0.10.tar.gz";
|
||||||
sha256 = "1qzzycjyp1qsw87msj9kg2q3h7il1bf4jkrwy841y0zi44fl3112";
|
sha256 = "4514f8960389042ca2587f9cb801a13f7990387753fc678680b0c084719b5b60";
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit propagatedBuildInputs;
|
inherit propagatedBuildInputs;
|
||||||
|
@ -18,7 +18,7 @@ rec {
|
||||||
|
|
||||||
/* doConfigure should be removed if not needed */
|
/* doConfigure should be removed if not needed */
|
||||||
phaseNames = ["installPythonPackage"];
|
phaseNames = ["installPythonPackage"];
|
||||||
|
|
||||||
name = "pyOpenSSL-" + version;
|
name = "pyOpenSSL-" + version;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python OpenSSL wrapper capable of checking certificates";
|
description = "Python OpenSSL wrapper capable of checking certificates";
|
||||||
|
|
Loading…
Reference in a new issue