mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
protocol: module to application
protocol really is a "buildPythonApplication" rather than a buildPythonPackage".
This commit is contained in:
parent
327a84749e
commit
88dae1a1c8
3 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, buildPythonPackage, fetchFromGitHub }:
|
||||
{ stdenv, buildPythonApplication, fetchFromGitHub }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
pname = "protocol";
|
||||
version = "20171226";
|
||||
|
|
@ -20118,6 +20118,8 @@ with pkgs;
|
|||
|
||||
pt = callPackage ../applications/misc/pt { };
|
||||
|
||||
protocol = python3Packages.callPackage ../applications/networking/protocol { };
|
||||
|
||||
pykms = callPackage ../tools/networking/pykms { };
|
||||
|
||||
pyload = callPackage ../applications/networking/pyload {};
|
||||
|
|
|
@ -20998,8 +20998,6 @@ EOF
|
|||
|
||||
trezor = callPackage ../development/python-modules/trezor { };
|
||||
|
||||
protocol = callPackage ../development/python-modules/protocol { };
|
||||
|
||||
trezor_agent = buildPythonPackage rec{
|
||||
name = "${pname}-${version}";
|
||||
pname = "trezor_agent";
|
||||
|
|
Loading…
Reference in a new issue