Move flootty from python-modules.

This commit is contained in:
Gregory Pfeil 2018-01-13 09:56:42 -07:00
parent 38deb53542
commit d40d41ef51
3 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,10 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, python }:
buildPythonPackage rec {
let
inherit (python.pkgs) buildPythonApplication fetchPypi;
in
buildPythonApplication rec {
pname = "Flootty";
version = "3.2.1";
name = "${pname}-${version}";

View File

@ -7444,7 +7444,7 @@ with pkgs;
findbugs = callPackage ../development/tools/analysis/findbugs { };
flootty = pythonPackages.flootty;
flootty = callPackage ../development/tools/flootty { };
flow = callPackage ../development/tools/analysis/flow {
inherit (darwin.apple_sdk.frameworks) CoreServices;

View File

@ -225,8 +225,6 @@ in {
diff-match-patch = callPackage ../development/python-modules/diff-match-patch { };
flootty = callPackage ../development/python-modules/flootty { };
gssapi = callPackage ../development/python-modules/gssapi { };
h5py = callPackage ../development/python-modules/h5py {