Commit c28b158a authored by Jörg Thalheim's avatar Jörg Thalheim
Browse files

python3.pkgs.units: remove

* no maintainer
* upstream repository disappeared
* no packages in nixpkgs seems to need it
parent 26b415ca
Loading
Loading
Loading
Loading
+0 −22
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "units";
  version = "0.07";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
  };

  meta = with lib; {
    description = "Python support for quantities with units";
    homepage = "https://bitbucket.org/adonohue/units/";
    license = licenses.psfl;
    maintainers = [ ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -16350,8 +16350,6 @@ self: super: with self; {
  unique-log-filter = callPackage ../development/python-modules/unique-log-filter { };
  units = callPackage ../development/python-modules/units { };
  unittest-data-provider = callPackage ../development/python-modules/unittest-data-provider { };
  unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };