mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
pythonPackages.umalqurra: refactor move to python-modules
This commit is contained in:
parent
6ee690466c
commit
3af94ba30e
26
pkgs/development/python-modules/umalqurra/default.nix
Normal file
26
pkgs/development/python-modules/umalqurra/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "umalqurra";
|
||||
version = "0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
|
||||
};
|
||||
|
||||
# No tests included
|
||||
doCheck = false;
|
||||
|
||||
# See for license
|
||||
# https://github.com/tytkal/python-hijiri-ummalqura/issues/4
|
||||
meta = with stdenv.lib; {
|
||||
description = "Date Api that support Hijri Umalqurra calendar";
|
||||
homepage = https://github.com/tytkal/python-hijiri-ummalqura;
|
||||
license = with licenses; [ publicDomain ];
|
||||
};
|
||||
|
||||
}
|
@ -4039,27 +4039,7 @@ in {
|
||||
|
||||
ukpostcodeparser = callPackage ../development/python-modules/ukpostcodeparser { };
|
||||
|
||||
umalqurra = buildPythonPackage rec {
|
||||
name = "umalqurra-${version}";
|
||||
version = "0.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/u/umalqurra/umalqurra-0.2.tar.gz";
|
||||
sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678";
|
||||
};
|
||||
|
||||
# No tests included
|
||||
doCheck = false;
|
||||
|
||||
# See for license
|
||||
# https://github.com/tytkal/python-hijiri-ummalqura/issues/4
|
||||
meta = {
|
||||
description = "Date Api that support Hijri Umalqurra calendar";
|
||||
homepage = https://github.com/tytkal/python-hijiri-ummalqura;
|
||||
license = with licenses; [ publicDomain ];
|
||||
};
|
||||
|
||||
};
|
||||
umalqurra = callPackage ../development/python-modules/umalqurra { };
|
||||
|
||||
umemcache = callPackage ../development/python-modules/umemcache {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user