mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
python.pkgs.events: 0.2.1 -> 0.3
This commit is contained in:
parent
013ba39557
commit
3575e894b2
17
pkgs/development/python-modules/events/default.nix
Normal file
17
pkgs/development/python-modules/events/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Events";
|
||||
version = "0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f4d9c41a5c160ce504278f219fe56f44242ca63794a0ad638b52d1e087ac2a41";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = http://events.readthedocs.org;
|
||||
description = "Bringing the elegance of C# EventHanlder to Python";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
@ -2417,22 +2417,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
events = buildPythonPackage rec {
|
||||
name = "Events-${version}";
|
||||
version = "0.2.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/E/Events/${name}.tar.gz";
|
||||
sha256 = "0rymyfvarjdi2fdhfz2iqmp4wgd2n2sm0p2mx44c3spm7ylnqzqa";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "http://events.readthedocs.org";
|
||||
description = "Bringing the elegance of C# EventHanlder to Python";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
|
||||
events = callPackage ../development/python-modules/events { };
|
||||
|
||||
eyeD3 = buildPythonPackage rec {
|
||||
version = "0.7.8";
|
||||
|
Loading…
Reference in New Issue
Block a user